home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 7_10.lha / 7_10 / test3.c < prev    next >
Text File  |  1993-08-08  |  456b  |  19 lines

  1. * Copyright (c) 1990 by AT&T Bell Telephone Laboratories, Incorporated. */
  2. * The C++ Answer Book */
  3. * Tony Hansen */
  4. * All rights reserved. */
  5. * based on cfront 2.0 release notes Spaces example */
  6. include <debug.h>    /* DELETE */
  7. include <test2.h>
  8.  
  9. ain()
  10.  
  11.    Spaces ss("a line with four spaces");
  12.    ss.exec();
  13.    long count = ss.result();
  14.    cout << "count = " << count << "\n";
  15.    main_process()->exit(0);
  16.    printf("should not get here\n");
  17.    return 0;
  18.  
  19.